home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 5 / Gold Medal Software - Volume 5 (Gold Medal) (1995).iso / database / cff51b.arj / ZTC.MAK < prev   
Makefile  |  1993-10-22  |  1KB  |  48 lines

  1. # Makefile for the cff test programs using zortech ztc 3.0 w/dos extender
  2. # assumes that ../ports/cfport.obj was compiled with ztc 3.0
  3.  
  4. CC = ztc -4 -mX -g
  5. LIB = ..\ports\cfport.obj ..\libs\libcff.lib ..\cff.h
  6. PORT = ..\ports\cfport.obj ..\libs\libcff.lib
  7.  
  8. all: permtest.exe pushtest.exe hashtest.exe copytest.exe treefile.exe \
  9.      filetest.exe misctest.exe blobtest.exe datatest.exe seqtest.exe \
  10.      duptest.exe treetest.exe
  11.  
  12. filetest.exe:    filetest.c $(LIB)
  13.                 $(CC) filetest.c $(PORT)
  14.  
  15. treefile.exe:    treefile.c $(LIB)
  16.                 $(CC) treefile.c $(PORT)
  17.  
  18. treetest.exe:    treetest.c $(LIB)
  19.                 $(CC) treetest.c $(PORT)
  20.  
  21. hashtest.exe:    hashtest.c $(LIB)
  22.                 $(CC) hashtest.c $(PORT)
  23.  
  24. duptest.exe:    duptest.c $(LIB)
  25.                 $(CC) duptest.c $(PORT)
  26.  
  27. pushtest.exe:    pushtest.c $(LIB)
  28.                 $(CC) pushtest.c $(PORT)
  29.  
  30. datatest.exe:    datatest.c $(LIB)
  31.                 $(CC) datatest.c $(PORT)
  32.  
  33. blobtest.exe:    blobtest.c $(LIB)
  34.                 $(CC) blobtest.c $(PORT)
  35.  
  36. permtest.exe:    permtest.c $(LIB)
  37.                 $(CC) permtest.c $(PORT)
  38.  
  39. misctest.exe:    misctest.c $(LIB)
  40.                 $(CC) misctest.c $(PORT)
  41.  
  42. copytest.exe:    copytest.c $(LIB)
  43.                 $(CC) copytest.c $(PORT)
  44.  
  45. seqtest.exe:    seqtest.c $(LIB)
  46.                 $(CC) seqtest.c $(PORT)
  47.  
  48.